﻿// JScript File

function popUpVideo()
{    
    sFeatures="scroll:no;dialogHeight:336px;dialogWidth:338px;edge: Raised;status=no;";
    window.showModalDialog('IFrames/IfrmPopups.aspx', self, sFeatures);
    return false;
}
function popUpVideoEx(vidName)
{
    sFeatures="scroll:no;dialogHeight:336px;dialogWidth:338px;edge: Raised;status=no;";
    window.showModalDialog('IFrames/IfrmPopups.aspx?vid=' + escape(vidName), self, sFeatures);
    return false;
}
function popUpImg(ID)
{
	var iID = ID;
	
	if(iID == 1)
	{   
		
		sFeatures="scroll:no;dialogHeight:730px;dialogWidth:475px;edge: Raised;status=no;";
		window.showModalDialog('IFrames/IfrmPopups.aspx?ID=1', self, sFeatures);
    }
    else if(iID == 2)
    {
		sFeatures="scroll:no;dialogHeight:520px;dialogWidth:620px;edge: Raised;status=no;";
		window.showModalDialog('IFrames/IfrmPopups.aspx?ID=2', self, sFeatures);
    }
    else if(iID == 3)
    {
		sFeatures="scroll:no;dialogHeight:570px;dialogWidth:420px;edge: Raised;status=no;";
		window.showModalDialog('IFrames/IfrmPopups.aspx?ID=3', self, sFeatures);
    }
    else if(iID == 5)
    {
		sFeatures="scroll:no;dialogHeight:170px;dialogWidth:520px;edge: Raised;status=no;";
		window.showModalDialog('IFrames/IfrmPopups.aspx?ID=5', self, sFeatures);
    }
    else if(iID == 6)
    {
		sFeatures="scroll:no;dialogHeight:170px;dialogWidth:520px;edge: Raised;status=no;";
		//sFeatures = "width=400,height=200,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes";
		window.showModalDialog('IFrames/IfrmPopups.aspx?ID=6', self, sFeatures);
    }
    else if(iID == 4)
    {
		//var sFeatures="scroll:yes;dialogHeight:600px;dialogWidth:800px;edge: Raised;status=no;"
		//window.showModalDialog(ATV0612071234_url, self, sFeatures);
		var sFeatures = "dialogWidth=800,dialogHeight=600,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes";
		var ATV0612071234_url = 'IFrames/IfrmPopups.aspx?ID=4';
		window.open(ATV0612071234_url,"win_ATV0612071234",sFeatures);
		
    }
        
    return false;
}

