// JavaScript Document
var popUpsBlocked;
var mine
function OpenWin(myurl){
	mine = window.open(myurl,'','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=500,height=300,top=334,left=479');
	if(mine){
	   popUpsBlocked = false;
	} else{
	   popUpsBlocked = true;
	}

	if(popUpsBlocked){
	  alert('We have detected that you are using popup blocking software.\nPlease allow http://www.artisticlightingcorp.com to view complete features of the website.');
	}

} //end function

function OpenWin2(myurl){
	mine = window.open(myurl,'mypopupwin','resizable=yes,width=500,height=455,top=120,left=479');
	mine.focus();
	if(mine){
	   popUpsBlocked = false;
	} else{
	   popUpsBlocked = true;
	}

	if(popUpsBlocked){
	  alert('We have detected that you are using popup blocking software.\nPlease allow http://www.artisticlightingcorp.com to view complete features of the website.');
	}

} // end function