function vp(q)   
        {
	$.ajax({   
    type: "GET",  
    url: "/getplacing.php",  
	data: "q=" + q, 
    cache: false,   
    success: function(html){   
    $("#ViewRoom" + q).html(html);   
    } 
    });
}

