function popupWin(source,h1,w1){
	 winname = 'popUp';
	if(undefined==h1)
	{
		h1=500;
	}
	if(undefined==w1)
	{
		w1=600;
	}
	 popupWindow = window.open(source,winname,'height=' + h1 + ',width=' + w1 + 
			 ',top=200,left=300' + 'toolbar=no,scrollbars=yes,resizable=yes,location=no');
}
