function GP_popupConfirmMsg(msg) { //v1.0
document.MM_returnValue = confirm(msg);
}

function showHideContent(d,e) {
	if(document.getElementById(d).style.display == "block") {
		document.getElementById(d).style.display = "none";
		document.getElementById(e).value = "";
	} else {
		document.getElementById(d).style.display = "block";
		document.getElementById(e).value = "";
	}
}

function popUp_win ( address) {
	var newWin =  window.open (address,"mywindow","menubar=0,resizable=1,width=390,height=620"); newWin.focus();
}

function popUp_win2 ( address, file_height, file_width) {
	file_height = file_height + 60; file_width = file_width + 40;
	temp_string = 'mywindow","menubar=0,resizable=1,scrollbars=1,width=' + file_width + ',height=' + file_height;
	var newWin =  window.open (address,"mywindow",temp_string); newWin.focus();
}