function goNext()
{
var nextPage = myNum + 1
document.location.href = portInfo[nextPage]
}

function goBack()
{
var lastPage = myNum - 1
document.location.href = portInfo[lastPage]
}

portInfo = new Array
	portInfo[1] = "waterfront.htm"
	portInfo[2] = "net1plus.htm"
	portInfo[3] = "abouthbs.htm"
	portInfo[4] = "wzlx.htm"
	portInfo[5] = "harnetts.htm"
	portInfo[6] = "viatech.htm"
	portInfo[7] = "cdrem.htm"
	portInfo[8] = "newbiz.htm"
	
if (screen.width == 640) {
	var screenwidth = 391;
	var screenheight = 400;
	var scroll = 1;}
		else {var screenwidth = 375;
	var screenheight = 475;
	var scroll = 0;}
	
		
	function go(url) {
opener.location.href = url;
}

	
	
	function portPop(URL) {
	var where = "portfolio/" + portInfo[URL]
    if (!window.bWindow) {
        // has not yet been defined
        bWindow = window.open(where,'Portfolio','width='+screenwidth+',height= '+screenheight+',resizable=yes,top=10,left=10,scrollbars='+scroll+'');
    }
    else {
        // has been defined
        if (!bWindow.closed) {
            // still open
			bWindow.focus(); bWindow.location = where;
        }
        else {
            bWindow = window.open(where,'Portfolio','width='+screenwidth+',height= '+screenheight+',resizable=yes,top=10,left=10,scrollbars='+scroll+'');
        }
    }
}
