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