/*This file created to add site js functions */
function showModal(url){								
	    	var isIE6 = /msie|MSIE 6/.test(navigator.userAgent);
			if(isIE6)
			{
	        	window.showModalDialog(url,'','dialogHeight:400px;dialogWidth:440px;dialogTop:px;dialogLeft:px;dialogRight:px;center:Yes;scroll:no;resizable:yes;status:no;');
	        }
	        else
	        {
	        	window.showModalDialog(url,'','dialogHeight:360px;dialogWidth:435px;dialogTop:px;dialogLeft:px;dialogRight:px;center:Yes;scroll:no;resizable:yes;status:no;');
	        }
}



function popInterstit(url){
	var popupToUse = "/Pages/popup-interstitial.aspx?URL=";
	var endingString = "&InterstitialType=popup";
	
	var createdUrl = popupToUse + url + endingString;
	
	//alert("testing popInterstit = " + url);
	//dcsMultiTrack('DCS.dcssip',url ,'DCS.dcsuri',url,'WT.ti',"flashLinkedPopupInterstitial");
	//applyWebTrendsOnInterstitial(createdUrl, "flashLinkPopupInterstitial");
	showModal(createdUrl);
}

function popUpFromFlash()
{
	popInterstit("http://www.fda.gov/medwatch");
}
