var windHandler;

// JavaScript Document
function setMenuBg(p_container,p_img)
{
	if (document.getElementById(p_container) != null) {
		document.getElementById(p_container).style.background = 'url(' + p_img + ') repeat-x';
	} //end if
} //end function setMenuBg

function setImgSrc(objImg, srcImg)
{
	if (document.getElementById(objImg) != null) {
		document.getElementById(objImg).src  = srcImg;
	} //end if
} //end function setImgSrc

function popWindow(width, height, address, title)
{
    params = "toolbar=no, location=no, directories=no, status=no" +
             ", menubar=no, scrollbars=yes, resizable=no, copyhistory=no" +
              ", width=" + width + ", height=" + height;

	if (windHandler != null) {
        if (windHandler.close) {
            windHandler.close();
        }
        windHandler = window.open(address, "popup_win", params);
        windHandler.focus();
    } else {
        windHandler = window.open(address, "popup_win", params);
        windHandler.focus();
    } //end if
} //end function popWindow

