function popUpWindow(URLStr, left, top, width, height, scroll, resize, winID)
{
	var winVar = this[winID];
	if(winVar) {
		if(!winVar.closed) winVar.close();
	}
	winVar = open(URLStr, winID,'width='+(screen.width - 10)+',height='+(screen.height - 30)+',screenX=0,screenY=0,directories=0,fullscreen=1,location=0,menubar=0,scrollbars=0,status=0,toolbar=0');
}









function launchVideo()
{
	var width = 360;
	var height = 245;
	var left = 300;
	var top = 300;

	popUpWindow("bboy_video.html", left, top, width, height, false, false, "videoWin");
}

function launchSite()
{
	var width =  screen.availWidth - 10;
	var height =  screen.availHeight - 30;
	var left = 0;
	var top = 0;
	var sitePage = "http://www.qualityoflife-themovie.com/launch.html";
	popUpWindow(sitePage, left, top, width, height, false, true, "siteWin");
}

function launchResponse()
{
	var width = 400;
	var height = 554;
	var left = 100;
	var top = 100;

	popUpWindow("guardian_response.html", left, top, width, height, true, true, "responseWin");
}

function launchJoin()
{
	var width = 454;
	var height = 192;
	var left = 100;
	var top = 100;

	popUpWindow("join.html", left, top, width, height, false, false, "joinWin");
}