/********************
file.....: js/xmlhttprequestFunctions.js
Descr....:  xmlhttp
Author...: George Stathis
Copyright: G&G - George Stathis - Gina Theodorly (www.gandg.gr)
*******************/
<!--
function setsessionscreenwidth(w) {
xmlhttp4.open("GET", "./includes/XmlHttpRequests/setsessionscreenwidth.asp?screenwidth="+w,true);
xmlhttp4.onreadystatechange=function() {
if (xmlhttp4.readyState==4) {
//alert(xmlhttp4.responseText)
 }
 }
xmlhttp4.send(null)
}

function setsessionscreenwidthPO(w) {
xmlhttp4.open("GET", "../includes/XmlHttpRequests/setsessionscreenwidth.asp?screenwidth="+w,true);
xmlhttp4.onreadystatechange=function() {
if (xmlhttp4.readyState==4) {
//alert(xmlhttp4.responseText)
 }
 }
xmlhttp4.send(null)
}
//-->

