function WindowOpener4(windowWidth, windowHeight, windowName, windowUrl)
{
    //var centerWidth = (screen.width - windowWidth) / 2);
    //var centerHeight = ((screen.height - windowHeight) / 2)-40;

    var centerWidth = (screen.width - 350);
    var centerHeight = (screen.height - 350);

    newWindow = window.open(windowUrl, windowName, ',width=' + windowWidth + 
        ',height=' + windowHeight + 
        ',left=' + centerWidth + 
        ',top=' + centerHeight +
		',menubar=no' + 
		',status=no' +
		',scrollbars=no' +
		',location=no' + 
		',resizable=no' +
		',fullscreen=no'
		);

    newWindow.focus();
    return newWindow.name;
}

function WindowOpener3(windowWidth, windowHeight, windowName, windowUrl)
{
    var centerWidth = (screen.width - windowWidth) / 2;
    var centerHeight = ((screen.height - windowHeight) / 2)-40;
	
    newWindow = window.open(windowUrl, windowName, ',width=' + windowWidth + 
        ',height=' + windowHeight + 
        ',left=' + centerWidth + 
        ',top=' + centerHeight +
		',menubar=yes' + 
		',status=no' +
		',scrollbars=yes' +
		',location=no' + 
		',resizable=yes' +
		',fullscreen=no'
		);

    newWindow.focus();
    return newWindow.name;
}

function WindowOpener(windowWidth, windowHeight, windowName, windowUrl)
{
    var centerWidth = (screen.width - windowWidth) / 2;
    var centerHeight = ((screen.height - windowHeight) / 2)-40;
	
    newWindow = window.open(windowUrl, windowName, ',width=' + windowWidth + 
        ',height=' + windowHeight + 
        ',left=' + centerWidth + 
        ',top=' + centerHeight +
		',menubar=no' + 
		',status=no' +
		',scrollbars=no' +
		',location=no' + 
		',resizable=yes' +
		',fullscreen=yes'
		);

    newWindow.focus();
    return newWindow.name;
}


function WindowOpener2(windowWidth, windowHeight, windowName, windowUrl)
{
    var centerWidth = (screen.width - windowWidth) / 2;
    var centerHeight = ((screen.height - windowHeight) / 2)-40;

    newWindow = window.open(windowUrl, windowName, 'width=' + windowWidth + 
        ',height=' + windowHeight + 
        ',left=' + centerWidth + 
        ',top=' + centerHeight +
		',menubar=no' + 
		',status=yes' +
		',scrollbars=yes' +
		',toolbar=yes' +		
		',location=yes' + 
		',resizable=yes' +  
        ',fullscreen=no'
		);

    newWindow.focus();
    return newWindow.name;
}