<!--

function openView(url) {

    window.open(url,'','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=400,height=300,left=0,top=0,screenx=0,screeny=0');

}



//left & top only for IE browsers

//syntax--window.open(URL, name [, features])

function popWindow(url){

    popUpWindow = window.open(url,'','resizable=yes,scrollbars=yes,titlebar=no,toolbar=no,status=no,menubar=no,width=465,height=400,left=150,top=100');

    popUpWindow.focus();

}



function popLargeWindow(url){

    popUpWindow = window.open(url,'','resizable=yes,scrollbars=yes,titlebar=no,toolbar=no,status=no,menubar=no,width=690,height=500,left=50,top=20');

    popUpWindow.focus();

}



function popTinyWindow(url){

    popUpWindow = window.open(url,'','resizable=yes,scrollbars=yes,titlebar=no,toolbar=no,status=no,menubar=no,width=450,height=300,left=150,top=100');

    popUpWindow.focus();

}



function popWindowTest(url){

    popUpWindow = window.open(url,'','resizable=yes,dependent=yes,scrollbars=yes,titlebar=yes,toolbar=yes,status=yes,menubar=yes,width=465,height=400,left=150,top=100');

    popUpWindow.focus();

}



function popModal(url){

    //window.showModalDialog("SMD_target.htm","Dialog Box Arguments # 1","dialogHeight: 269px; dialogWidth: 25px; dialogTop: 326px; dialogLeft: 613px; edge: Raised; center: Yes; help: Yes; resizable: Yes; status: Yes;");

    window.showModalDialog(url,'Question Viewer','dialogHeight:300px; dialogWidth:400px;resizable:No;location:No; ');

}



function popBigModal(url){

    window.showModalDialog(url,'Confidentiality Statement','dialogHeight:400px; dialogWidth:500px; resizable:No; location:No; ');

}

-->