<!--//hide
function popup(url,width,height) { 
    var URL = url;
	//alert("width:"+width+"; height:"+height);
	var parameters = 'width='+width+',height='+height+',screenX=100,left=100,top=50,screenY=50,location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes';
    var popWindow = window.open(URL, 'popWin',parameters);
	//var popWindow = window.open(URL, 'popWin','width="500",height="550",screenX=100,left=100,top=50,screenY=50,location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes');
    popWindow.focus();
}

function popupView(url) { 
    var URL = url;
    var popupWindow = window.open(URL, 'popupWin','width=600,height=600,screenX=50,left=50,top=50,screenY=50,toolbar=no,menubar=no,scrollbars=yes,resizable=yes');
    popupWindow.focus();
}

function fullView(url) { 
    var URL = url;
    var fullWindow = window.open(URL, 'fullWin','width=800,height=580,screenX=50,left=50,top=50,screenY=50,toolbar=yes,menubar=no,scrollbars=yes,resizable=yes');
    fullWindow.focus();
}

//-->