function OpenWin(l,w,h,t) {

var l;
var w;
var h;
var t;

l = l;

// title
if (typeof(t) == 'string')
	t = t;
else
	t = "_blank";

// width
if (typeof(w) == 'string')
	w = w;
else
	w = 795;

// height
if (typeof(h) == 'string')
	h = h;
else
	h = 530;



NewWin=window.open(l, t, 'toolbar=no, location=0, directories=1, status=0, menubar=0, scrollbars=no, resizable=no,  width=' + w + ',height=' + h  );  
}
  
