	var winstance = null;

	function openwin( htName ) {
		winstance = window.open(  htName + '.html','win1','scrollbars,width=730,height=600');
	}

	function closewin(){
		if( winstance != null ){
			winstance.close();
		}
	}

