// Window Open
function winopen(url,width,height){
var mywin = top.window.open(url,'www', 'resizable=yes,scrollbars=yes,status=yes,menubar=no,height='+height+',width='+width+'');
mywin.focus();
}

// Window Open
function winopen_no(url,width,height){
var mywin = top.window.open(url,'www', 'resizable=yes,scrollbars=no,menubar=no,height='+height+',width='+width+'');
mywin.focus();
}
