// JavaScript Document
function popUp(strURL,strType,strHeight,strWidth,strLeft,strTop) {
var strOptions="";
if (strType=="fixed") strOptions="status=0,scrollbars=0,resizable=0,height="+strHeight+",width="+strWidth+",left="+strLeft+",top="+strTop;
window.open(strURL, 'newWin', strOptions);
}
//-->