// JavaScript 

// products menu
function show(id) {
    document.getElementById(id).style.display = 'block';
    document.getElementById(id).style.visibility = 'visible';
    }
function hide(id) {
    document.getElementById(id).style.display = 'none';
    document.getElementById(id).style.visibility = 'hidden';
    }
function wide(id) {
    document.getElementById(id).style.width = '325px';
    }
function narrow(id) {
    document.getElementById(id).style.width = '200px';
    }

// 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>Viking RV Decor</title><link href="/assets/css/Viking.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('</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 + 'menubar=no,scrollbars=no,titlebar=no';
	wallwin = window.open('','wallwindow',winattrib);
	wallwin.document.writeln('<html>');
	wallwin.document.writeln('<head><title>Viking RV Wood Decor</title><link href="/assets/css/Viking.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();
}