<!--//
var urlValue = window.location;
urlValue = urlValue.toString();
urlarr = urlValue.split("?");
urlValue = "?" + urlarr[1];

//if (!parent.frames.name){
//if (window.parent == window)
try
{
  if (top.location.href == self.location.href) {
  	var url = "master_frame.php" + urlValue;
  }
  else {
  	if (window.name == parent.frames.parent.frames.name){
  		var url = "master_frame.php" + urlValue;
  	}
  }
  if (url != undefined) {
  	window.location.href = url;
  }
}
catch(error)
{}
  
//-->
