var VirtualMakeover =
{
	checkImage: function()
	{
	},
	pathRoot: "http://www.pallensmith.com/virtualmakeover/tips/",
	showMegapixel: function()
	{
		var url = this.pathRoot + "megapixels.html";
		var name = "Megapixels";
		var height = "300";
		var width = "500";
		this.openNewWindow(url, name, height, width);
	},
	showResolution: function()
	{
		var url = this.pathRoot + "resolution.html";
		var name = "Megapixels";
		var height = "300";
		var width = "500";
		this.openNewWindow(url, name, height, width);
	},
	showFileSize: function()
	{
		var url = this.pathRoot + "filesize.html";
		var name = "Megapixels";
		var height = "300";
		var width = "500";
		this.openNewWindow(url, name, height, width);
	},
	showFileType: function()
	{
		var url = this.pathRoot + "filetype.html";
		var name = "Megapixels";
		var height = "300";
		var width = "500";
		this.openNewWindow(url, name, height, width);
	},
	openNewWindow: function(url, name, height, width)
	{
		var features = "width=" + width +
			", height=" + height + 
			", scrollbars=yes, menubar=0";
		window.open(url, name, features);
	}
}
	
	
