function request_alert(part_id, part_type)
{
	var w = 1024, h = 768;
	if (document.all || document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	var popW = 600, popH = 470;
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	targetwin = window.open ("/alert/?part_id=" + escape(part_id) + "&part_type=" + escape(part_type),"mywindow", "menubar=0,resizable=1,width=" + popW + ",height=" + popH + ",top=" + topPos + ",left=" + leftPos + ",status=0,toolbar=0,location=0,directories=0, scrollbars=0"); 
}

