﻿// JavaScript Document
function OpenWin(myurl){
window.open(myurl,'','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=450,height=250,top=277,left=569');
}

function OpenWin2(myurl){
window.open(myurl,'','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=672,height=450,top=277,left=569');
}

function OpenWin3(myurl){
window.open(myurl,'','toolbar=no,location=yes,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=672,height=450,top=180,left=170');
}


function PopupWin(url,w,h)
{
    
    window.open(url, "external", "width=" + w +",height=" + h + ",resizable=no,scrollbars=yes,status=no,location=no,toolbar=no,menubar=no");
}
