//<!--

function showNewsImageDiv(div_name,file_name) {

	var div_object = new getObj(div_name)
	var large_image_object = new getObj("large_image")
	var large_image_hidden_object = new getObj("large_image_hidden")

	if (large_image_object.obj && large_image_hidden_object.obj )
	{
		large_image_object.obj.src = file_name;
		large_image_hidden_object.obj.src = file_name;
	}
	
	if (div_object.obj)
	{
		// For positioning it relative to the top of window, regardless of scrolling
		var DivTop = Math.ceil(windowState.getScrollY()+120);
		var DivLeft = Math.ceil((windowState.getWidth()/2)-280); //use 390 if you want it to align to the left of the enquiry box
		div_object.style.top = DivTop + 'px'
		div_object.style.left = DivLeft + 'px'
		
		//div_object.style.top = findPosTop(a_content_object.obj) - 50 + 'px'
		//div_object.style.left = findPosLeft(a_content_object.obj) + 195 + 'px'
		
		ShowDiv(div_name)
	}
}


//-->

