
<!--
function popupwindow(winWidth,winHeight,Url,Name,Scroll,Status,Resize,Fullscreen) {
	var lsBrowser = navigator.appName;
	var navInfo = navigator.userAgent;
	if (Scroll == "yes") {
		if (navInfo == "Mac" && lsBrowser.indexOf("Microsoft") >= 0) {
				aw = 0;
		} else {
				aw = 17;
		}		
	} else {
		aw = 0;
	}			
    var iMyWidth;
    var iMyHeight;
    var myWidth;
    var myHeight;
    myWidth = screen.availWidth;
    myHeight = screen.availHeight;
    winWidth = winWidth.toUpperCase()
    winHeight = winHeight.toUpperCase()
				
    if (winWidth == "FULL") {
            widthWindow = screen.availWidth;
        } else {
            widthWindow = parseInt(winWidth) + aw;
        }
    if (winHeight == "FULL") {
            heightWindow = screen.availHeight;
        } else {
            heightWindow = winHeight;
        }
    iMyWidth = (myWidth/2) - (widthWindow/2);
    iMyHeight = (myHeight/2) - (heightWindow/2);
    var str = "height=" + heightWindow + ",width="	+ widthWindow + ",menubar=0,resizable=" + Resize + ",scrollbars=" + Scroll + ",Status=" + Status + ",titlebar=0,toolbar=0,left="+ iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight;
	if (Fullscreen == "true") {
		str += ",fullscreen";
	}
    win = window.open(Url,Name,str);
    win.focus();
}
