

function openPopUp(address, width, height) {
	
	window.open (address, "popupwindow","status=0,toolbar=0,menubar=0,resizable=0,width=" + width + ",height=" + height);
	return false;
}


function openPopUp2(address, width, height) {
	
	window.open (address, "popupwindow","scrollbars=1,status=0,toolbar=0,menubar=0,resizable=0,width=" + width + ",height=" + height);
	return false;
}
