function OpenWin(url,w,h) { 
windowfeatures = "width=" + w + ",height=" + h + ",scrollbars=0,resizable=0,";
open(url, "", windowfeatures);
}

