

function interviewLG()
{
	var url = "http://www.iwtvcds.co.uk/interviews/legalgeneral/interview.html";
	var target = "LGInterview";

	var width = 705;
	var height = 632;

	if(typeof(window.screen) == 'undefined') {
		var sw = 800;
		var sh = 600;
	} else {
		var sw = window.screen.width;
		var sh = window.screen.height;
	}

	var left = Math.round(0.5 * (sw - width));
	var top = Math.round(0.5 * (sh - height));
	var resizable = 0;
	var scrollbars = 0;

	var win = window.open(url, target, 'left=' + left + ',top=' + top + ',width=' + width + ',height=' + height + ',directories=0,location=0,menubar=0,resizable=' + resizable +',scrollbars=' + scrollbars + ',status=0,toolbar=0');
	win.focus();
}

