var myWindows = new Array();
function openWin(html, name, width, height, scroll, status) {
		if (width == '')
			var width = 350;
		if (height == '')
			var height = 650;
		if (status == '')
			var status = no;
		myWindows[myWindows.length] = open( html, name, 'width='+width+',height='+height+',scrollbars='+scroll+',status='+status+',resizable=yes,location=no,toolbar=no');
	}
	
var myOtherWindows = new Array();
function openFullWin(html, name, width, height, scroll, status) {
		if (width == '')
			var width = 350;
		if (height == '')
			var height = 650;
		if (status == '')
			var status = no;
		myOtherWindows[myOtherWindows.length] = open( html, name, 'width='+width+',height='+height+',scrollbars='+scroll+',status=yes,resizable=yes,location=yes,toolbar=yes');
	}