function jsOpenWindow(url,title,sb,w,h,x,y,l,t) {
	var features = "scrollbars=" + sb + ",width=" + w + ",height=" + h + ",screenx=" + x + ",screeny=" + y + ",left=" + x + ",top=" + y;
  	window.open(url,title,features);
}

function jsAutoResize(){
	window.moveTo(0,0);
	window.resizeTo(screen.availWidth-1,screen.availHeight-1);
}