/* Javascript file that contains the common javascript functions */

// following javascript function adds the sort portion to the url and redirects to the same page. Added on 09-12-2008 . (Author : Photoninfotech)

 function sortlocation(str,url,delim){
	document.location.href = url+'/sort/'+str;
 }

