
function openWin(url,width,height){

	var newWin;
	newWin=window.open(url,"popup","width=" + width + ",height=" + height + ",toolbar=0,directories=0,menubar=0,status=0,resizable=yes,location=0,scrollbars=yes");
	
	
}


