
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);
}

/* Festivalbussen script */
function center(width,height,cx,cy)
{
	var x=(cx==0)?0:(cx==1)?parseInt((screen.width-width-10)/2):screen.width-width-10;
	var y=(cy==0)?0:(cy==1)?parseInt((screen.height-height-56)/2):screen.height-height-56;
	return (",top="+y+",left="+x);
}

function openwindow(url)
{
	window.open(url,"FB","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=800,height=650"+center(800,650,1,1)+"");
}
