function photo() {
window.open("","photo","width=1040,height=800,resize=no,toolbars=no,scrolling=no,location=no,status=no,menubar=no")
}

function photo1() {
window.open("","photo","width=800,height=1040,resize=no,toolbars=no,scrolling=no,location=no,status=no,menubar=no")
}


function popUp() {
props=window.open('http://www.alexabrooke.com/freecam.html', 'poppage', 'toolbars=0, scrollbars=0, location=0, statusbars=0, menubars=0, resizable=0, width=350, height=300');
}


function canManipulateImages() {
	if (document.images)
		return true;
	else
		return false;
}

// loadPosterImage

function loadPosterImage(imageURL) {
	if (gImageCapableBrowser) {
		document.imagePoster.src = imageURL;
		return false;
	}
	else {
		return true;
	}
}

gImageCapableBrowser = canManipulateImages();


function extra() {
window.open("", "extra", "width=795, height=880, resize=1, toolbars=0, scrolling=1, location=0, status=0, menubar=0")
}

   function popupper(url,x,y,name,sb,rs,st,lt,tb) {
    var win = null;
    var centerwidth=(screen.width/2)-(x/2);
    var centerheight=(screen.height/2)-(y/2);
    var scrollbarstext = 'scrollbars = no,';
    var resizabletext = 'resizable = no,';
    var statustext = 'status = no,';
    var locationtext = 'location = no,';
    var toolbartext = 'toolbar = no,';
    var features = '';
    if (sb == 1){
      scrollbarstext = 'scrollbars = yes,'
    }
    if (rs == 1){
      resizabletext = 'resizable = yes,'
    }
    if (st == 1){
        statustext = 'status = yes,'
    }
    if (lt == 1){
        locationtext = 'location = yes,'
    }
    if (tb == 1){
        toolbartext = 'toolbar = yes,'
    }
    features = scrollbarstext+resizabletext+statustext;
    features = features + locationtext+toolbartext;
    features = features + 'width = '+x+',height = '+y;
    features = features + ',top = ' + centerheight;
    features = features + ',left = ' + centerwidth;
    win = window.open(url, name, features);
  }
  
  
function OpenNewWindow(obj, width, height)
{
    var target="_blank";
    var title="default popup title";
    if(obj.target) target=obj.target;
    if(obj.title) title=obj.title;
    var newWindow = window.open("", target, "location=no, directories=no, fullscreen=no, menubar=no, status=no, toolbar=no, width=" + width + ", height=" + height + ", scrollbars=yes");
    newWindow.document.writeln('<html><head><tit'+'le>'+title+'</title>');
    newWindow.document.writeln('<meta content="no" http-equiv="imagetoolbar" /></head>');
    newWindow.document.writeln('<body style="margin: 0 0 0 0;" onblur="self.close();">');
    newWindow.document.write('<a href="javascript:window.close();">');
    newWindow.document.write('<img src="' + obj.href + '" alt="Click to close" id="bigImage" style="border: 0;" />');
    newWindow.document.writeln('</a>');
    newWindow.document.writeln('</body></html>');
    newWindow.document.close();
    return false;
}
  
// get the date information
//
date = new Date();
month = new String;
day = new String;
year = new String;

month = date.getMonth()
day = date.getDate()

// This is the y2k fixer function--don't worry about how this works,
// but if you want it in your scripts, you can cut and paste it. 
//
 function y2k(number) { 
return (number < 1000) ? number + 1900 : number;
}

// Get the year and fix the y2k bug using the fixer function.
//
year = y2k(date.getYear())

// Translate the number of the month to a word--so 0 becomes January.
// Notice that I've cut months 3 to 10 to save space.  if you want to
// run this example, you'll have to put those in place of the ellipsis, . . .
//
if (month == "0")
	month = "January";
	else
if (month == "1")
	month = "February";
	else
if (month == "2")
	month = "March";
	else
if (month == "3")
	month = "April";
	else
if (month == "4")
	month = "May";
	else
if (month == "5")
	month = "June";
	else
if (month == "6")
	month = "July";
	else
if (month == "7")
	month = "August";
	else
if (month == "8")
	month = "September";
	else
if (month == "9")
	month = "October";
	else
if (month == "10")
	month = "November";
	else
if (month == "11")
	month = "December";
