function openwindow(url,name,width,height,scrollbars) 
{ 
	leftpos = (screen.width/2) - (width/2);
	features = "width=" + width + ",height=" + height + ",left=" + leftpos + ",top=200,scrollbars=" + scrollbars;
	window.open(url,name,features);
}
