function openPopup(url, name, width, height, center)
{
	var posx = (center)? ( screen.width - width ) / 2 : 0;
	var posy = (center)? ( screen.height - height ) / 2 : 0;
	var feat = "width="+width+",height="+height+",top="+posy+",left="+posx+",resizable=no,scrollbars=no";
	var popImageUploader = window.open(url, name,feat);
}

function openLegalLinePopup()
{
	openPopup('legal_line.html', 'legoline_popup', 535, 305, true);
}