function resize(width,height) 
{
	try
		{
			top.moveTo(0,0);
			if(window.top.frames[0] != undefined)
			{
				if(window.top.frames[0].name = "index_popup")
				{
					if (document.all)
					{
						resize_window(width + 10 ,height + 60);
					}
					else if (navigator.appName == "Netscape")
					{
						resize_window(width + 6,height + 54);
					}
				}
			}
			else if(window.name=="production")
			{
				alert('resize me');
				resize_window(800,600);
			}
			else if(window.top.frames[0] == undefined && window.name !="production")
			{
				if (document.all)
				{
					resize_window(width + 10 ,height + 150);
				}
				else if (navigator.appName == "Netscape")
				{
					resize_window(width + 8,height + 142);
				}
			}
		}
	catch(ex){}
}	
function resize_window(width,height) 
{
	try
	{
		if (document.all)
		{
			top.resizeTo(width,height);
		}
		else if (navigator.appName == "Netscape")
		{
			top.outerHeight = height;
			top.outerWidth = width;
		}
	}
	catch(ex){}
}
function showWinSize()
{
	try{
			if (document.all)
			{
				window.status = "innerWidth=" + document.body.clientWidth + " innerHeight=" + document.body.clientHeight ;
			}
			else if (navigator.appName == "Netscape")
			{
				window.status = "innerWidth=" + window.innerWidth + " innerHeight=" + window.innerHeight ;
			}
		}
	catch(ex){}
}