// JavaScript Document

//function openPopup(url,width,height) {
//	window.open(url,"popup",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,width=' + width + ',height=' + height + ',resizable=1');
//}

function openPopup(url, windowname, width, height) {
	window.open(url,windowname,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,width=' + width + ',height=' + height + ',resizable=1');
}

function openDemo(url, windowname, width, height) {
	window.open(url,windowname,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,width=' + width + ',height=' + height + ',resizable=1');
}
