function create_window(url) {
	var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no,width=400,height=200,left=10,top=10,screenX=10,screenY=10';
	var tabWindow = window.open(url, '_blank', styleStr);
	tabWindow.location.href = url;
}

function create_window_with_scrollbars(url) {
	var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=600,height=600,left=10,top=10,screenX=10,screenY=10';
	var tabWindow = window.open(url, '_blank', styleStr);
	tabWindow.location.href = url;
}
function MakePopupTextures(name,file_path)
	{
	//var pos_center = GetScreen();
	//alert(file_path);
	win = window.open('','','width=390,height=390');
	image_tag  = "<html><head><title>"+name+"</title></head>";
	image_tag += "<body style='padding:0px; margin:0px;'>";
	image_tag += "<img src='"+file_path+"'>";
	image_tag += "</body>";
	image_tag += "</html>";
	win.document.write(image_tag);
	}
function MakePopup(file_path)
	{
	win = window.open('','','params');
	}
////////
function openPopupWindow(url,width,height){
	var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no,width='+(width+2)+',height='+(height+2);
	win = window.open('','_blank',styleStr);
	image_tag  = "<html><head><title>"+url+"</title></head>";
	image_tag += "<body style='padding:0px; margin:0px;'>";
	image_tag += "<center>";
	image_tag += "<img src='"+url+"'>";
	image_tag += "</center>";
	image_tag += "</body>";
	image_tag += "</html>";
	win.document.write(image_tag);
}