
function openpage(width,height,url){
/*Credit: Website Abstraction www.wsabstract.com more JavaScripts here.*/
	
	var opts = "scrollbars=yes,resizable=yes,toolbar=yes,status=yes,location=yes,menubar=yes";
	if (!url) { var url = 'index.html';}

	if (width)  { opts += ',width=' + width; }
	if (height) { opts + ',height=' + height; }

win2=window.open(url,"",opts)
win2.creator=self
win2.focus
}

