
//window open

function openwin(href,w,h)
{
var win;
win = window.open(href,'win','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width='+w+',height='+h);

win.focus();
}

function openwin2(href,w,h)
{
var win;
win = window.open(href,'win2','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='+w+',height='+h);
win.focus();
}

