
//------------------------------------------------------------------------------
//	'Name:		    Links.js
//	'Description:	Corporate and News Url for redirecting the user to news site and corp site.
//					This file is addded as part of SEO Enhancements to Corporate Site
//	'               SF-SEO03. 
//	'Company	:	Infinite Computer Solutions, Bangalore
//  'Date		:   06/07/2007 
//	'------------------------------------------------------------------------------
//Corporate and News Url for redirecting the user to news site and corp site
var CorporateUrl="http://www.simplexity.com/Pages/";
var NewsInphonicUrl="http://www.simplexity.com/Pages/";
//Redirect the user to corp site
function RedirectCorpLink(page)
{
location.href=CorporateUrl+page;
}
//Redirect the user to news site
function RedirectNewsLink(page)
{
location.href=NewsInphonicUrl+page;
}