// change iframe location to query string ifrm's value
if(window.ifrm != null) {
	var strValue = GetValueFromQueryString('ifrm');
	if (strValue != null && strValue.length > 0) {
		var strURLDecoded = URLdecode(strValue);
		window.ifrm.location = strURLDecoded;
	}
}