function CheckPopUpStatus(Page)
{

	if (Page.substring(0,14)== 'EmailQuote.asp')
	{
		var mine = window.open(Page,'PurchaseOrder','width=500,height=350,status=no,resizable=no,move=no,top=10,left=40,scrollbars=yes')
	}
	else if (Page.substring(0,13) == 'printable.asp')
	{
		var mine = window.open(Page);
	}
	else
	{
		var mine = window.open(Page,'','width=700,height=310,status=no,resizable=no,move=no,top=10,left=40,scrollbars=yes');
	}
	if (!mine)
	{
		alert('Relax yourself, Website is working perfectly.Please make sure the popup is enabled \n Thank you!');
	}
}
