function OpenWin(l,w,h,t) {

var l;
var w;
var h;
var t;
var imgw;
var imgl;

l = l;

// title
if (typeof(t) == 'string')
	t = t;
else
	t = "_blank";


//   1024    685
//     36     30
//   1060    715

//  document.images[l].style.width = 100+"%"

// width
// if (screen.width>=1024)

if (typeof(w) == 'string') 
	{ w = w; }
else
	{
	if (screen.width>1024)
		w = 1060;
	else
		w = 900;
	}


// height
// if (screen.height>=768)

if (typeof(h) == 'string') 
	{ h = h; }
else
	{
	if (screen.height>768)
		h = 715;
	else
		h = 600;
	}


NewWin=window.open(l, t, 'toolbar=no, location=0, directories=1, status=0, menubar=0, scrollbars=yes, resizable=yes,  width=' + w + ',height=' + h );  
}
  

