
function showThePic( imagename , message , winSize ){
var winDims = '';
var newWin;
var imageURL = 'images/LA_Trip/images/'; 
var base_location = 'images/'; //not used
var newWinStatus = '';
var loadStatusCntr = 0;
var promo = 'DAMA COC -  Your home for data and information management';
//css varz
var css1 = '<span class=\"sh\">';
var csses = '</span>';

imageURL += imagename;
winDims = winSize + 'directories = no,location = no,menubar = no,resizable = yes,scrollbars = no,status = yes,toolbar = no, top=100,left=100';

//alert('Horizontal Popup - lookng for ' + imageURL);
//winDims = 'width=630,height=370,directories = no,location = no,menubar = no,resizable = yes,scrollbars = no,status = yes,toolbar = no, top=100,left=100';
newWin =  window.open("hpopup.html", 'PopUp', winDims);
newWin.document.write('<html><head>\n<title>DAMA COC - Trip to DAMA International Conference - 2004</title>\n');
newWin.document.write('<LINK href="../css/damacoc.css" rel=\"StyleSheet\" type=\"text/css\">\n</head>');
newWin.document.write('<body bgcolor="#F5FBD2" onLoad="if (window.focus) window.focus()">\n<center>');
newWin.document.write('<img src="' + imageURL + '">\n');
newWin.document.write('<br>' + css1 + message + csses + '\n');
newWin.document.write('</center></body>');
newWin.status = promo;

} //end popEmUp