//<![CDATA[

///
// ----- Pop-up related functions ----- 
///

/* Generic pop-up functions */
function popWin(strGoTo,iWidth,iHeight,isNormalWindow,strWinName){
    var w = screen.availWidth;
	var h = screen.availHeight;
	if (!isNaN(w) && w != null){
	    var leftPos = (w-iWidth)/2;
	    var topPos = (h-iHeight)/2;
    } 
	else {
	    var leftPos = 1;
	    var topPos = 1;
	}
	if(isNormalWindow) {
	    isNormalWindow = "1" ;
	}
	else {
	    isNormalWindow = "0";
	}
	strParams = "scrollbars,left=" + leftPos + ",top=" + topPos + ",location=" + isNormalWindow + ",toolbar=" + isNormalWindow + ",menubar=" + isNormalWindow + ",titlebar =" + isNormalWindow + ",resizable =" + isNormalWindow + ",status=1,height=" + iHeight + ",width=" + iWidth;
	newWindow = window.open(strGoTo,strWinName,strParams);

	if(newWindow) {
	    newWindow.focus();
	    newWindow = null;
	}
}

/* launch men's footwear page */
function openUKAmbassadorsSite(object, width, height, isNormalWindow) {
    popWin(object.href, width, height, isNormalWindow, "UKAmbassadors");
}

//]]>
