function popup(sURL, WinName, sWidth, sHeight){

	var sFeatures;
	sFeatures='width=' + sWidth + ',height=' + sHeight + ',toolbar=no,scrollbars=no';
	
	window.open(sURL,WinName,sFeatures);
}