//_main/_library/get_url_parameter.js
//1.03, MC, 6/1/08

function get_url_parameter(name){
	name=name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]")
	regex=new RegExp("[\\?&]"+name+"=([^&#]*)") 
	results=regex.exec(window.location.href)  
	if (results==null){
		return ""
	}else{
		return results[1]
	}
}
