// JavaScript Document
var imagePath = 'images/';
function swapImage(obj,src)
{
	obj.src = imagePath + src;
		
}

function popUpWindow(url, winName, w, h) 
{
	win = window.open( url, winName, "status = 1, height = " + h + ", width = " + w + ", resizable = 0, scrollbars=0" )
	win.focus();
}
