// JavaScript Document

function mailme(whichone) {
	var address;
	if(whichone == "drawme") {
		window.open("mailto:dennis@drawme.com?subject=INQUIRY FROM DRAWME.COM");
	}
	else if(whichone == "webmasters") {
		window.open("mailto:wolandepiphanius@wolandepiphanius.net;tesseract69@yahoo.com?subject=INQUIRY TO WEBMASTERS");
	}
	else {
		window.open("mailto:dennis@porterart.com?subject=INQUIRY FROM DRAWME.COM");
	}
}

function getWinDim() {
	var winW, winH;
	var pict_container = document.getElementById('pict_holder');
	
	if (parseInt(navigator.appVersion)>3) {
		 if (navigator.appName.indexOf("Microsoft")!=-1) {
			winW = document.body.offsetWidth-20;
			winH = document.body.offsetHeight-20;
		 }
		 else {
		 	winW = window.innerWidth-16;
			winH = window.innerHeight-16;
		 }
	}
	pict_container.style.left = (winW-800)/2;
	pict_container.style.top = "55px";	
}

function growPicture() {
	var bus_card = document.getElementById('bus_card');
	bus_card.width = 149;
	bus_card.height = 244;
}
function shrinkPicture() {
	var bus_card = document.getElementById('bus_card');
	bus_card.width = 75;
	bus_card.height = 128;
}

function switchOrderType(whichType) {
	var online_order = document.getElementById('online_order_form');
	var mail_order = document.getElementById('mail_order_form');
	var online_ele = document.getElementById('online');
	var mail_ele = document.getElementById('mail');
	
	if(whichType == "online") {
		online_order.style.display = "";
		online_ele.style.color = "#ff0000";
		mail_order.style.display = "none";
		mail_ele.style.color = "#0000ee";
	}
	else {
		online_order.style.display = "none";
		online_ele.style.color = "#0000ee";
		mail_order.style.display = "";
		mail_ele.style.color = "#ff0000";
	}
}