// JavaScript Document	
	NS = (document.layers) ? 1 : 0;
    IE = (document.all) ? 1 : 0;
	
	
	function winopen(ht,wd,path) {
	par = new Array() 
	par[0] = path
	win = window.open("big.html","","top=0,left=100,height=" + ht + ",width=" + wd)
	win.focus()
	}
	
