// PDAndYou JavaScript Document
//File Name  	 : PDAndYouPopups.js
//Description	 : This document contains functions used to open various pages as popups.
//Author		 : -
//Created Date	 : 10/12/2007 (MM/DD/YYYY)
//Last Modified	 : 10/12/2007 (MM/DD/YYYY)  	

//Displays Body Talk page in a popup window.
function DisplayBodyTalk()
{
	var bodyTalkWindow = OpenPopupWindow('/PDInfo/PDInfo_Bodytalk.asp', 'bodytalk', 'width=950, height=600, scrollbars=no,    resizable=yes'); 
}

//Displays Medication Planner page in a popup window.
function DisplayMedicationPlanner()
{
	var medicationPlannerWindow = OpenPopupWindow('/PDInfo/PDInfo_Planner.asp', 'medicationplanner', 'width=977, height=630, scrollbars=yes,    resizable=yes'); 
}

//Displays IQ Test page in a popup window.
function DisplayIQTest()
{
	var IQTestWindow = OpenPopupWindow('/IQ.html', 'testiq', 'width=977, height=630, scrollbars=yes,    resizable=yes'); 
}

//Displays Sign Up page in a popup window.
function DisplaySignUp()
{
	var signUpWindow = OpenPopupWindow('/signup/Signup.asp?title=Sign Up For More Information&sb=t&cb=t', 'signup', 'width=780, height=650, scrollbars=yes,    resizable=yes'); 
}

function DisplayPrescribingInfo()
{
	var signUpWindow = OpenPopupWindow('/Prescribing/Prescribing.asp?title=Prescribing Information', 'signup', 'width=780, height=650, scrollbars=yes,    resizable=yes'); 
}


//Displays 'Email This Page' page in a popup window.
function DisplayEmailThisPage(ParentPage)
{
	var emailThisPage = OpenPopupWindow('/Email This page/EmailPage.asp?parentpage=' + window.location.href, 'emailpage', 'width=780, height=650, scrollbars=no, resizable=yes'); 
}
function DisplayPDTracker()
{
	var pdTracker = OpenPopupWindow('PDTracker.asp', 'pdtracker', 'width=977, height=630, scrollbars=yes, resizable=yes'); 
}


//Opens a new Popup Window
//returns reference to the window
function OpenPopupWindow(URL, windowName, windowProperties)
{
  var newWindow = window.open(URL, windowName, windowProperties);
  newWindow.focus();
  return newWindow;
}
//Returns the warning window in the resources page.
function popup_window_warning(site)
{
  var newWindow = window.open("/Common/PopupWarning.asp?site=" + site , "PopupWarning", "width=742, height=555, scrollbars=no, resizable=yes");
  newWindow.focus();
}
//to display video files
function DisplayVideo(FileName)
{
  window.open("/Common/VideoPlayer.asp?file=" + FileName, "videowindow", "width=360, height=410, scrollbars=no, resizable=yes");
    
}

//Displays Body Talk page in a popup window.
function DisplayAnimation(file)
{
	var bodyTalkWindow = OpenPopupWindow("/AboutNeupro/PlayAnimation.asp?file=" + file, "Animation", 'width=650, height=700, scrollbars=no, resizable=yes'); 
}