function EditResource(resourceCode){
	displayWindow('edit_resource.php?resourceCode=' + resourceCode, 'EditResource', 700, 540, "resize=yes,scrollbars=yes,resizable=yes");
}

function windowClose(){
	window.close()
}

function displayWindow(theURL,winName,width,height,features) {
    var window_width = width;
    var window_height = height;
    var newfeatures = features;
    var window_top = (screen.height-window_height)/2-20;
    var window_left = (screen.width-window_width)/2;
    newWindow=window.open(''+ theURL + '',''+ winName + '','width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + ',' + newfeatures + '');
    newWindow.focus();
}

function OpCancel()
{
	window.close();
	return true;
}

function CloseWnd()
{
	if(opener != null)
		opener.location.href = opener.location.href;
	window.close();
}


