function openSubWindow(html, name, w, h, sb){	var scWidth = screen.availWidth;	var scHeight = screen.availHeight;{	setw = 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=' + sb + ',resizable=no,width=' + (w) + ',height=' + (h) + ',top=' + ((scHeight-h)/2) + ',left=' + ((scWidth-w)/2);	subWindow = window.open(html,name,setw);	}		subWindow.focus();}function openFullwin(html, name, w, h) {	var w   =   window.screen.availWidth-13;	var h   =   window.screen.availHeight-35;	var fullwin=		window.open(html,'fullwin', 'width=' + w +  ',height=' + h +  ',resizable=yes,scrollbars=yes,menubar=yes' + ',toolbar=yes,status=no,top=0,left=0');	fullwin.focus();	fullwin.resizeTo(window.screen.availWidth,window.screen.availHeight);     }