/*NOT TEST*/

function html()
{
	var URL;
	var Body; // DOM Document Element 
	
	//CONSTANTS:
	this.URL="http://www.besheniebabki.ru/";
}

html.prototype={
	set:function()
	{
		this.Body=document.getElementsByTagName("body").item(0);
	},
	destroy:function(element_id)
	{
		if(!document.getElementById(element_id)){return false;}
		var obj=document.getElementById(element_id);
		HTML_OBJ.Body.removeChild(obj);		
	},
	get_div_position:function(elementWidth,elementHeight)
	{
		var result=Array(2);
		result['left']=Number(BRAUSER_OBJ.brauserWidth/2-BRAUSER_OBJ.elementWidth/2)+"px";
		result['top']=Number(BRAUSER_OBJ.brauserTop+BRAUSER_OBJ.get_scroll_top()+BRAUSER_OBJ.elementHeight/2)+"px";
		return result;
	},
	open_center:function(path)
	{
		var left=(BRAUSER_OBJ.screenWidth-BRAUSER_OBJ.brauserLeft)/2-350+brauserLeft+'px';
		var top=brauserTop+20+'px';
		var height=screenHeight-brauserTop-40+'px';
		window.open(path,'newwindow','width=700px,height='+height+', top='+top+',left='+left+', scrollbars=yes,resizable=no');
	}	
}

