// JavaScript Document

function LinkAlert (url)
{

 var retVal = confirm("You are now leaving the Doc & Diva web site and moving to an external web site independently operated and not managed by Novogyne Pharmaceuticals. Novogyne assumes no responsibility for the site.");
   if( retVal == true ){
     window.open (url,'mywindow')
	  
	  }

}

function LinkAlert_novogyne (url)
{

 var retVal = confirm("You are now leaving the Doc & Diva web site and moving to an external web site operated by Novogyne Pharmaceuticals Corporation.");
   if( retVal == true ){
     window.open (url,'mywindow')
	  
	  }

}

function Popup(url) {
window.open( url, "popup", "height = 800, width = 667, resizable = 0, scrollbars=yes" )
}