/*
					var main_doc = window.parent.main.document;
					main_doc.write('<html>');
					main_doc.write('<head>');
					main_doc.write('<title>Nationwide Services</title>');
					main_doc.write('<link rel="stylesheet" href="./style/redesign.css" type="text/css" media="screen">');
					main_doc.write('</head>');
					main_doc.write('<body class="body">');
					main_doc.write('<table class="border" align="left">');
					main_doc.write('<tr><td>');
					main_doc.write('<table cellpadding="0" cellspacing="0" class="header">');
					main_doc.write('<tr>');
					main_doc.write('<td width="562" class="contentheader">');
					main_doc.write('<img src="./images/headertext-welcome.gif">');
					main_doc.write('</td></tr>');
					main_doc.write('<tr>');
					main_doc.write('<td class="contentmain" id="content_table" name="content_table">');
					main_doc.write('<iframe src="' + source_href + '" class="iframe" name="iframe" scrolling="auto" frameborder="0" height="100%" width="100%" align="top">');
					main_doc.write('</iframe>');
					main_doc.write('</td>');
					main_doc.write('</tr>');
					main_doc.write('<tr>');
					main_doc.write('<td class="contentfooter">&copy;2004 Mid Atlantic Processing</td>');
					main_doc.write('</tr>');
					main_doc.write('</table>');
					main_doc.write('</td>');
					main_doc.write('</tr>');
					main_doc.write('</table>');
					main_doc.write('</body>');
					main_doc.write('</html>');
*/					
function load_content(target, source_href)
{
	
	window.open (source_href, target);
	return;

	switch (target)
	{



		case 'main':
			//do we have iframe element?!
			if (!window.parent.main.document.all.iframe)
			{
				var page_url = '../new/iframe.asp?url='  + source_href;
				window.open (page_url , 'main');
			}
			else
			{
				//is it already there???
				if (window.parent.main.document.all.iframe.src != source_href)
					window.parent.main.document.all.iframe.src = source_href;
			}	

			break;
			
		case 'left':
			//alert(window.parent.frames('left').window.location.href);
			window.open (source_href , 'left');
			break;
			
		default:
			alert('unknown frame!');
	}
}

function load_links()
{
	window.open ( './news/links.asp', 'left');
}