/* 
	Moves the window to the top left corner and re-sizes it to fit the available height and width 
*/
window.moveTo(0,0);
window.resizeTo(screen.availWidth,screen.availHeight);
/*
	The following function is a pop-up funtion, used in the flash actionscripting
*/
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
	newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}