<!-- Begin POP-UP SIZES AND OPTIONS CODE

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS

var showimage_1		= "yes"		// SHOW SIDEBAR IMAGE 1
var showimage_2		= "yes"		// SHOW SIDEBAR IMAGE 2
var showimage_3		= "yes"		// SHOW SIDEBAR IMAGE 3
var spacing		= "20"		// NUDGE SIDEBAR DOWN
var paragraph_1 	= "no"		// SHOW THE 1ST PARAGRAPH
var paragraph_2 	= "no"		// SHOW THE 2ND PARAGRAPH

var showdate		= "yes"		// SHOW THE DATE ON THE PAGE
var dateLR		= "right"	// DATE LEFT OR RIGHT
var dateX		= "10"		// DATE X LOCATION
var dateY		= "200"		// DATE Y LOCATION

var showpaypal		= "no"			// SHOW A VIEW CART BUTTON
var paypalemail		= "your@email.com"	// YOUR PAYPAL E-MAIL



// NUDGE SPACER
document.write('<img src="imgs/spacer.gif" height="'+spacing+'" width="10"><br>')




// SMALL PICTURE AREA 1
   if (showimage_1 == "yes") {

//document.write('<a href="about.htm"><IMG SRC="imgs/drgupta.jpg" border="0" width="250" height="333" ></a><br>')
document.write('<a href="about.htm"><IMG SRC="imgs/lopawebpic.jpg" border="0" width="300" height="451" ></a><br>')

document.write('<br>')

}



// START VIEW CART AREA

   if (paragraph_1 == "yes") {

document.write('<em>Thanks to you I have been given beautiful, new horizons in my life. Your excellent and thoughtful care has erased years from my face, giving me back the person I used to know.</em>')
}


// START VIEW CART AREA

   if (showpaypal == "yes") {
document.write('<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" style="margin: 0px">');
document.write('<input type="hidden" name="cmd" value="_cart">');
document.write('<input type="hidden" name="business" value="your@email.com">');
document.write('<input type="image" src="imgs/cart-view.gif" border="0" name="submit" alt="View Cart" onmouseover="this.src=\'imgs/cart-viewon.gif\'" onmouseout="this.src=\'imgs/cart-view.gif\'">');
document.write('<input type="hidden" name="display" value="1">');
document.write('</form><br><br>');
}

// END VIEW CART AREA




// START DATE SCRIPT
   if (showdate == "yes") {

document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ". ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}


// -- END -->