// JavaScript Document

function openWin(url, w, h) 
{ 
var winprop = "width=" + w + ",height=" + h; 
openwin = window.open(url,'',winprop); 

} 
