function popupwindow(strUrl,strName,intWidth,intHeight)
{
	strDim = 'width=' + intWidth + ',height=' + intHeight + ',status=no,menubar=no,resizable=yes,scrollbars=yes';
	newwindow = window.open(strUrl,strName,strDim);
}

function poppers(thisUrl,thisWindow,thisWidth,thisHeight,thisTop,thisLeft)
{
		if(window.mainWin){ mainWin.close();}
		optionString = ('width=' + thisWidth + ',height=' + thisHeight + ',top=' + thisTop + ',left=' + thisLeft + ',status=no,menubar=no,resizable=yes,scrollbars=yes');
		mainWin = window.open(thisUrl,thisWindow,optionString);
}

function openPoll() {	
	poppers('http://w3.rockparty.se/questionsrp/default.aspx','Rockparty',205,265,150,150);
}