// JavaScript Document

function winopen( html,winname ){
	newWindow = window.open( html,winname,"status=0,resizable=0,width=480,height=272, scrollbars=0");
	newWindow.focus();
}
