﻿function trimString (str) {
    str = this != window? this : str;
    return str.replace(/^\s+/g, '').replace(/\s+$/g, '');
}

String.prototype.trim = trimString;

function openwindowInTop(url)
{
	top.window["openModal"](url);
}

function openModal(url)
{
	showPopWin(url, 450, 500, null);
}

function openwindow(url)
{
	showPopWin(url, 450, 500, null);
}

function eradic8() 
{
} 

function showSucessfulUpdate()
{
    alert('Update Sucessfull');
}