/**
 * 
 */
function openWindow(link){
		var URL = link;;
		var win = window.open(URL, "popup_window", "width=450,height=350,resizable=1,scrollbars=1");
		if(window.focus)
		{
			// put the focus on the popup if the browser supports the focus() method
			win.focus();
		}
		return win;
}

function openWindowContent(href, link, type)
{
	width  = 880;
	height = 650;
	
  	int_windowLeft = (screen.width - width) / 2;
  	int_windowTop = (screen.height - height) / 3;
	
	if(type == "flash" )
		strtype = "flash";
	else if(type == "image")
	{
		strtype = "image";
	}
	else if(type == "video")
		strtype = "video";

	else if(type == "test")
	{	
		window.open(href,'','width = ' + width + ',height = ' + height + ',top = ' + int_windowTop + ',left = ' + int_windowLeft + ', resizable=1,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,status');
		return;
	}		
	window.open(host_base + '/content?type=' + strtype +'&value=' + encodeURIComponent(href),'','width = ' + width + ',height = ' + height + ',top = ' + int_windowTop + ',left = ' + int_windowLeft + ', resizable=1,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,status');
	return 
}
