// JavaScript Document
function redirect(pageTarget)
{
	switch(pageTarget)
	{
		case "about":	
			parent.frames['topFrame'].location="about_header.htm";
			parent.frames['mainFrame'].location="about_body_primary.htm";
			break;
			
		case "solutions":	
			parent.frames['topFrame'].location="solutions_header.htm";
			parent.frames['mainFrame'].location="solutions_body_hardware.htm";
			break;
		
		case "support":		
			parent.frames['topFrame'].location="support_header.htm";
			parent.frames['mainFrame'].location="construction.htm";
			break;
		
		case "corporate":	
			parent.frames['topFrame'].location="corporate_header.htm";
			parent.frames['mainFrame'].location="corporate_body_company.htm";
			break;
		
		case "news":
			parent.frames['topFrame'].location="news_header.htm";
			parent.frames['mainFrame'].location="news_body_close.htm";
			break;
		
		case "contact":	
			parent.frames['topFrame'].location="contact_header.htm";
			parent.frames['mainFrame'].location="contact_body.htm";
			break;
	}
}
