// JavaScript Document

function winopen( html,winname ){
	newWindow = window.open( html,winname,"status=0,resizable=0,width=801,height=637, scrollbars=0");
	newWindow.focus();
}

function winopen2( html,winname ){
	newWindow = window.open( html,winname,"status=0,resizable=0,width=399,height=637, scrollbars=0");
	newWindow.focus();
}

function winopen3( html,winname ){
	newWindow = window.open( html,winname,"status=0,resizable=0,width=500,height=300, scrollbars=0");
	newWindow.focus();
}

function winopen4( html,winname ){
	newWindow = window.open( html,winname,"status=0,resizable=0,width=480,height=640, scrollbars=0");
	newWindow.focus();
}
