//document.write("returnWidth: " + returnWidth() + "<br>");
/*
document.write("Total Width: " + screen.width + "<br>");
document.write("screen.availWidth: " + "*" + screen.availWidth + "<br>");
document.write("window.innerHeight: " + "*" + window.innerHeight + "<br>");
document.write("window.innerWidth: " + "*" + window.innerWidth + "<br>");
*/ 

 function returnWidth()
 {
	 if (window.innerWidth >= 320)
	 {
		document.getElementById("logoWidth").width='320';
	 }
	 else
	 {	 
		document.getElementById("logoWidth").width=window.innerWidth;
	 }
 }

