/******** websites.html page ******/
var xChildWindow = null;
function xWinOpen(sUrl)
{
  var features = "left=0,top=0,width=600,height=500,location=0,menubar=0," +
    "resizable=1,scrollbars=1,status=0,toolbar=0";
  if (xChildWindow && !xChildWindow.closed) {xChildWindow.location.href = sUrl;}
  else {xChildWindow = window.open(sUrl, "myWinName", features);}
  xChildWindow.focus();
}
/** web.html page **/
var newwindow;
function openNewWindow(url){
	newwindow=window.open(url, 'name','menubar=no, toolbar=no, width=600, height=600, left=0, top=0, resizable=1,scrollbars=1,status=0,toolbar=0');
	newwindow.blur();
}	

/******** photos.html page ******/
if (document.images){
   var imgstr = new Image();
}

function show_img(x){
	if (document.images){
      imgstr.src = x;
	    document["logo"].src = imgstr.src;
      document["logo1234"].src = imgstr.src;
	}
}


/***** portfolio.html  websites**/

var xxChildWindow = null;
function xxWinOpen(sUrl)
{
  var features = "left=0,top=0,width=1100,height=900,location=0,menubar=0," +
    "resizable=1,scrollbars=1,status=0,toolbar=0";
  if (xxChildWindow && !xxChildWindow.closed) {
	  xxChildWindow.location.href = sUrl;
  }
  else {xxChildWindow = window.open(sUrl, "name", features);}
  xxChildWindow.focus();
}
