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