function popupWin(filename){

	var PopUpTotalWidth = 682;
	var LeftPixel1 = 100;
	var PopUpTotalHeight = 515;
	var TopPixel = 100;

    popup = window.open('','ProtfolioPop','top='+TopPixel+',screeny='+TopPixel+',left='+LeftPixel1+',screenx='+LeftPixel1+',width=682,height=515,buttons=no,scrollbars=no,location=no,menubar=no,resizable=no,status=no,directories=no,toolbar=no');
	popup.focus(); // bring our subwindow to the front
	   	popup.location.href = 'pop/' + filename + '.html';
        if (popup.opener == null) popup.opener = window;
}

function popupWin2(filename){

	var PopUpTotalWidth = 515;
	var LeftPixel1 = 100;
	var PopUpTotalHeight = 682;
	var TopPixel = 100;

    popup = window.open('','ProtfolioPop','top='+TopPixel+',screeny='+TopPixel+',left='+LeftPixel1+',screenx='+LeftPixel1+',width=515,height=682,buttons=no,scrollbars=no,location=no,menubar=no,resizable=no,status=no,directories=no,toolbar=no');
	popup.focus(); // bring our subwindow to the front
	   	popup.location.href = 'pop/' + filename + '.html';
        if (popup.opener == null) popup.opener = window;
}