// JavaScript Document
function open_win(win,w,h) 
{
spec = "location=0,status=0,titlebar=0,toolbar=0,menubar=0,scrollbars=0,width=" + w + ",height=" + h ; 
window.open(win,"myWindow",spec)
}
