﻿// JavaScript Document

// do nothing...
function donothing(foo) { }

//Products Popup
function viewDecor(file) {
	url = '/images/products/decor/lg/' + file;
	winsize = 'width=505,height=363,'

	winattrib = winsize + 'menubar=no,scrollbars=no,titlebar=no';
	wallwin = window.open('','wallwindow',winattrib);
	wallwin.document.writeln('<html>');
	wallwin.document.writeln('<head><title>Coachmen RV Decor</title><link href="/assets/css/CoachmenRV.css" rel="stylesheet" type="text/css" media="screen" /></head>');
	wallwin.document.writeln('<body style="margin: 0px; font-size: 12px; background-color: #fff; background-image: none; padding: 5px;" onblur="javascript:window.close();">');
	wallwin.document.writeln('<img src="', url, '" alt="Coachmen RV Decor" onclick="javascript:window.close();" />');
	//wallwin.document.writeln('<h4 style="font-family: Arial, Helvetica, sans-serif;font-weight: bold;font-style: normal;color: #666;padding:0px;margin:0px;">Fabric Key: </h4>');
	//wallwin.document.writeln('<p style="padding: 0px; margin: 0px;">');
	//wallwin.document.writeln('<b>A.</b> Main <b>B.</b> Accent <b>C.</b> Bedspread');
	//wallwin.document.writeln('</p>');
	wallwin.document.writeln('</body></html>');
	wallwin.document.close();
	wallwin.focus();
	wallwinstat="yes";
	}


function viewWood(file) {
	url = '/images/products/wood/lg/' + file;
	winsize = 'width=275,height=275,'

	winattrib = winsize + 'left=200,top=200,menubar=no,scrollbars=no,titlebar=no';
	wallwin = window.open('','wallwindow',winattrib);
	wallwin.document.writeln('<html>');
	wallwin.document.writeln('<head><title>Coachmen RV Wood Decor</title><link href="/assets/css/CoachmenRV.css" rel="stylesheet" type="text/css" media="screen" /></head>');
	wallwin.document.writeln('<body style="margin: 0px; font-size: 12px; background-color: #fff; background-image: none; padding: 5px;" onblur="javascript:window.close();">');
	wallwin.document.writeln('<img src="', url, '" alt="Coachmen RV Wood Decor" onclick="javascript:window.close();" />');
	wallwin.document.writeln('</body></html>');
	wallwin.document.close();
	wallwin.focus();
	wallwinstat="yes";
	}

var myWin;
function viewVideo(theURL) {
	if(myWin) {
		if(!myWin.closed) {myWin.focus();}
	}
	myWin = open(theURL,'loadVideo','width=750,height=575,scrollbars=no,resizable=yes');
	myWin.focus();
}

var myWin;
function viewTravelEasy() {
	if(myWin) {
		if(!myWin.closed) {myWin.focus();}
	}
	myWin = open('/why/travel/Travel-Easy.aspx','loadTravelEasy','width=640,height=590,scrollbars=yes,resizable=yes');
	myWin.focus();
}

