function applet_window(c, name) {//, sizeX, sizeY) {
	//posX = (screen.width/2)-(sizeX/2);
	//posY = (screen.height/2)-(sizeY/2);		   
	//win=window.open("java/applet.php?classfile=" + c + "&" + "width=" + sizeX + "&height=" + sizeY, "Applet", "width=" + sizeX + ", height=" + sizeY + ", left = " + posX + ", top = " + posY + ", resizable=yes, scrollbars=no, dependent=yes");	
	win=window.open(c, name, 'location=0, resizable=0, scrollbars=0, dependent=1, directories=0, toolbar=0');
	win.focus();
}

