﻿/* common.js */

function popUp(url, name, width, height)
{
	window.open(url, name, "width=" + width +",height=" + height);
	
	return false;
}

function popUpDemo()
{
	
	theWindow = window.open("bannerDemo.aspx", "bannerDemo", "width=740,height=300");
	
	if(window.focus)
	{
		theWindow.focus();
	}
	
	return false;
}

function toggleImage(imgId, imgPath)
{

      var img = document.getElementById(imgId);

      img.src = imgPath;
}

function showSpan(spanID)
{
	var obj = document.getElementById(spanID);
	obj.style.display = "";
}

function hideSpan(spanID)
{
	var obj = document.getElementById(spanID);
	obj.style.display = "none";
	obj.firstChild.value = "";
}

