/*
 Purpose: Miscellaneous functions that every webpage should have go in here
 Author: Johnson Sathaseevan (jsathaseevan@rocksolidhq.com)
 Company: Rock Solid Computer Services
 Version: February 13/2007
*/

var _NEW_WINDOW_SETTINGS = 'location = 1, toolbar = 1, status = 1,  statusbar = 1, menubar = 1,  width=' + self.screen.width + ', height=' + self.screen.height;
var settings;

function newWindow(link)
{
 settings = _NEW_WINDOW_SETTINGS;
 window.open(link, "_blank", settings);
}