/* show hide */

function show(x) { 

if(x == 1) {
y = 2
}
else if(x == 2) {
y = 1
}

    if (document.getElementById('col2_home_'+x).style.display == 'none') {
        document.getElementById('col2_home_'+x).style.display = 'block' // open it
        document.getElementById('col2_home_'+y).style.display = 'none' // close other

    } else {
        document.getElementById('col2_home_'+x).style.display = 'none' // close it
        document.getElementById('col2_home_'+y).style.display = 'block' // open other
    }

}

function photopop( pFileName, pTitle) {

photoWin = window.open( "", "photo", "width=auto,height=auto,status,scrollbars,resizable,screenX=20,screenY=40,left=20,top=40");
photoWin.document.write('<html><head><title>' + pTitle + '</title></head>');
  photoWin.document.write('<BODY BGCOLOR=#FFFFFF TEXT=#000000>');
  photoWin.document.write('<img src="' + pFileName + '" alt="' + pTitle +'">');
  photoWin.document.write('</body></html>');
  photoWin.document.close();
}
