function launchWindow1() {
var w = 475, h = 345; 
if (document.all || document.layers) { 
    w = screen.availWidth; 
    h = screen.availHeight; 
 }
var popW = 475, popH = 345; 
var leftPos = (w-popW)/2, topPos = (h-popH)/2; 
window.open('player.html','red blue records player','resizable=yes,scrollbars=no,width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos); 
//window.open("player.html",'musicplayer','width=475,height=350,scrollbars=no');
}

function adjustLoadPgSize()
{
	//MOVES WINDOW TO THE UPPER CORNER
	window.moveTo(0, 0);
	//RESIZES TO SCREEN SIZE
	window.resizeTo(screen.width, screen.height);
}
adjustLoadPgSize();