    function popUp( url, name, width, height) 
	{ 
	 	var menubar     = 0;  // The File, Edit, View Menus 
		var scrollbars  = 0;  // Horizontal and vertical scrollbars 
		var locationbar = 0;  // The location box with the site URL 
		var directories = 0;  // the "What's New", "What Cool" links 
		var resizable   = 0;  // Can the window be resized? 
		var statusbar   = 0;  // Status bar (with "Document: Done") 
		var toolbar     = 0;  // Back, Forward, Home, Stop toolbar 

		str  = ""; 
		str += "width=" + width + ","; 
		str += "height=" + height + ","; 
		str += 	(menubar ? ",menubars" : "") + 
				(scrollbars ? ",scrollbars" : "") + 
				(locationbar ? ",location" : "") + 
				(directories ? ",directories" : "") + 
				(resizable ? ",resizable" : "") + 
				(statusbar ? ",status" : "") + 
				(toolbar ? ",toolbar" : ""); 

		if ( window.screen ) 
		{ 
			var ah = screen.availHeight - 30; 
			var aw = screen.availWidth - 10; 
	 
			var xc = ( aw - width ) / 2; 
			var yc = ( ah - height ) / 2; 
	 
			str += ",left=" + xc + ",screenX=" + xc; 
			str += ",top=" + yc + ",screenY=" + yc; 
		} 
		
		window.open( url, name, str ); 
		return false;
	} 
	    function popUp_image( name, image, width, height) 
	{ 
	 	var menubar     = 0;  // The File, Edit, View Menus 
		var scrollbars  = 1;  // Horizontal and vertical scrollbars 
		var locationbar = 0;  // The location box with the site URL 
		var directories = 0;  // the "What's New", "What Cool" links 
		var resizable   = 1;  // Can the window be resized? 
		var statusbar   = 0;  // Status bar (with "Document: Done") 
		var toolbar     = 0;  // Back, Forward, Home, Stop toolbar 

		str  = ""; 
		str += "width=" + width + ","; 
		str += "height=" + height + ","; 
		str += 	(menubar ? ",menubars" : "") + 
				(scrollbars ? ",scrollbars" : "") + 
				(locationbar ? ",location" : "") + 
				(directories ? ",directories" : "") + 
				(resizable ? ",resizable" : "") + 
				(statusbar ? ",status" : "") + 
				(toolbar ? ",toolbar" : ""); 

		if ( window.screen ) 
		{ 
			var ah = screen.availHeight - 30; 
			var aw = screen.availWidth - 10; 
	 
			var xc = ( aw - width ) / 2; 
			var yc = ( ah - height ) / 2; 
	 
			str += ",left=" + xc + ",screenX=" + xc; 
			str += ",top=" + yc + ",screenY=" + yc; 
		} 
		
		window.open( "open.aspx?name=" + name + "&img=" + image, "popup_image", str ); 
		return false;
	} 
function InPos(ID)
{
var IDS = document.bas_update["price_"+ID].value; 
	var win=window.open("InPos.aspx?ID="+ID+"&IDS="+IDS,"INPOS","width=150, height=40, top="+(screen.height/2-30)+", left="+(screen.height/2-30)+",resizable=0");

}