// JavaScript Document
function redirect(url){
	location.replace(url);
}
function pageChange(url){
	window.open(url, '_self');
}

function confirmDelete(msg, url){
	if(confirm(msg) == true){
		location.replace(url);
	}
}

function popUp(url){
	window.open(url, 'MyWindow', 'width=500, height=250', true);
}

function extenderElement(elementName){
	var obj = window.document.getElementById(elementName).value; 
	opener.document.getElementById(elementName).value = obj;
	window.close();
}

function newWindow(url){
	window.open(url, 'MyWindow', 'width=603, height=404', true);
}

