﻿//variables used for image gallery tool
var imgFSWidth = 425; //main image width for filmstrip mode
var imgFSHeight = 425; //main image height for filmstrip mode
var imgFSHWidth = 550; //main image width for filmstrip horizontal mode
var imgFSHHeight = 285; //main image height for filmstrip horizontal mode
var imgGRDWidth = 400; //main image width for grid mode
var imgGRDHeight = 400; //main image height for grid mode
var imgNPWidth = 350; //main image width for grid mode
var imgNPHeight = 350; //main image height for grid mode

function newWindow(url,target)
{
	window.open(url,target);
}

function frmPayPal_Submit()
{
    document.frmPayPal.submit();
}

function frmEmailForm_Submit(cid,label,input)
{
    if(window.confirm("This form is being submitted via e-mail. Please be aware if you are sending sensitive information.\nDo you wish to proceed?"))
    {
        document.frmEmailForm.cid.value = cid;
        document.frmEmailForm.label.value = label;
        document.frmEmailForm.input.value = input;
        document.frmEmailForm.submit();
    }
}

function openBCImageGallery()
{
    var gallery = window.open('bc.imagegallery.aspx','gallery','width=800,height=600,toolbars=0,resizable=1');
    gallery.focus();
}
