// JavaScript Document


function popWin(url,string) {
  popWin(url,'remote',string);
}
function popWin(url,name,string) {
  window.open(url, name, string);
}
function showRefine(location){
	if(document.getElementById(location).style.display=='none' || document.getElementById(location).style.display==''){
		document.getElementById(location).style.display='inline';
	}else{
		document.getElementById(location).style.display='none';
	}
}
function showRefineClose(location){
	document.getElementById(location).style.display='none';
}

