Help with validation
- bido
- Newbie


- Joined: May 14, 2011
- Posts: 6
- Status: Offline
I can't validate my page. Please someone help me if you can.
Code: [ Select ]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "---/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="....org/1999/xhtml">
<head>
<script type="text/javascript">
<!--
//-->
function checkform ( form )
{
if (form.occupation.value == "") {
alert( "Please enter your occupation." );
form.occupation.focus();
return false ;
}
return true ;
}
function checkform(f) {
for (var i=0; i<f.elements("gender").length;
i++) {
var radio = f.elements("gender")[i];
if (radio.checked) {
return true;
}
}
// no checked radio button found
window.alert("Choose your gender!");
f.elements("gender")[0].focus();
return false;
}
function checkform(f) {
for (var i=0; i<f.elements("job").length;
i++) {
var radio = f.elements("job")[i];
if (radio.checked) {
return true;
}
}
// no checked radio button found
window.alert("Choose if you have a job!");
f.elements("job")[0].focus();
return false;
}
function checkform(f) {
for (var i=0; i<f.elements("bla").length;
i++) {
var radio = f.elements("bla")[i];
if (radio.checked) {
return true;
}
}
// no checked radio button found
window.alert("Answer question number 1");
f.elements("bla")[0].focus();
return false;
}
function checkform(f) {
for (var i=0; i<f.elements("use").length;
i++) {
var radio = f.elements("use")[i];
if (radio.checked) {
return true;
}
}
// no checked radio button found
window.alert("Answer question number 3!");
f.elements("use")[0].focus();
return false;
}
function checkform(f) {
for (var i=0; i<f.elements("often").length;
i++) {
var radio = f.elements("often")[i];
if (radio.checked) {
return true;
}
}
// no checked radio button found
window.alert("Answer question number 5!");
f.elements("often")[0].focus();
return false;
}
function checkform(f) {
for (var i=0; i<f.elements("upload").length;
i++) {
var radio = f.elements("upload")[i];
if (radio.checked) {
return true;
}
}
// no checked radio button found
window.alert("Answer question number 6!");
f.elements("upload")[0].focus();
return false;
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Questionaire</title>
<link href="oneColLiqCtrHdr19.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
body {
background-color: #FFF;
background-image: url(images/aa.jpg);
}
-->
</style></head>
<body class="oneColLiqCtrHdr">
<div id="container">
<div id="header">
<h1> </h1></div>
<p>
<!-- forms -->
<form action="...../interaction/saveforminfo.aspx" method="post" onsubmit="return checkform(this);">
<input type="hidden" name="surveyid" value="knjuku2" />
<input type="hidden" name="usecookie" value="true" />
<input type="hidden" name="landingpage" value="http.../thanks.html" />
<!--.../interaction/viewdb.aspx?surveyid=knjuku2-->
<p align="center"><b>This survey was made for Business Academy Copenhagen North project not for FDIM.</b></p>
<p>
<fieldset>
<div align="center">
<b>Please enter your personal information</b>
</div>
<p align="center"><b>Your Occupation:</b>
<input type="text" name="occupation" /><br /></p>
<p align="center">
<b>Age Group:</b> <select name="age">
<option value="under 18">less then 18</option>
<option value="18-25">18-25</option>
<option value="26-35">26-35</option>
<option value="over 35">more then 35</option>
</select></p>
<p align="center">
<b>Status:</b> <select name="status">
<option value="single">Single</option>
<option value="single with children">Single with children</option>
<option value="in relationship">In relationship</option>
<option value="married">Married</option>
<option value="divorced">Divorced</option>
</select></p>
<p align="center"><b>Gender:</b>
<input type="radio" name="gender" value="male" /> Male
<input type="radio" name="gender" value="female" /> Female<br /></p>
<p align="center">
<b>Do you have a job?</b> <input type="radio" name="job" value="yes" />Yes
<input type="radio" name="job" value="no" />No </p>
</fieldset>
<!-- 1 vopros -->
<b>1. Why do You use online social media?</b>
</p>
<p>
<input type="radio" name="bla" value="To chat with friends" />
To chat with friends<br></br>
<input type="radio" name="bla" value="To read news" /> To read news<br></br>
<input type="radio" name="bla" value="To write blogs" /> To write blogs<br></br>
<input type="radio" name="bla" value="Other" /> Other<br></br>
</p>
<p>
<!-- 2 vopros -->
<b>2. What online social media do You use more often?</b>
</p>
<p> </p>
<p>
<select name="more">
<option value="MySpace">MySpace</option>
<option value="Twitter">Twitter</option>
<option value="Facebook">Facebook</option>
<option value="LinkedIn">LinkedIn</option>
</select>
</p>
<p> </p>
<!-- 3 vopros -->
<b>3. When do You use it?</b>
<p>
<input type="radio" name="use" value="1" /> At home<br></br>
<input type="radio" name="use" value="2" /> At work<br></br>
<input type="radio" name="use" value="3" /> At school<br></br>
<input type="radio" name="iuse" value="4" /> In the bus/train<br></br>
<input type="radio" name="use" value="5" /> Other<br></br>
</p>
<p><b>4. How much hours approximately do You spend on social media?</b>
</p>
<select name="hours">
<option value="less than 2 hours">less than 2 hours a day</option>
<option value="2-4 hours">2-4 hours a day</option>
<option value="4-8 hours">4-8 hours a day</option>
<option value="8-12 hours">8-12 hours a day</option>
<option value="more than 12 hours">more than 12 hours a day</option>
</select>
<p> </p>
<p>
<!-- 5 vopros -->
<b>5. Do You use social media often?</b></p>
<p>
<input type="radio" name="often" value="Yes" />
Yes
<input type="radio" name="often" value="No" /> No
<!-- 6 vopros -->
</p>
<p><b>6. Social Media website to which You usually upload</b></p>
<p>
<input type="radio" name="upload" value="Youtube" /> Youtube<br></br>
<input type="radio" name="upload" value="Flickr" /> Flickr<br></br>
<input type="radio" name="upload" value="Photobucket" /> Photobucket<br></br>
<input type="radio" name="upload" value="Slideshare" /> Slideshare<br></br>
<input type="radio" name="upload" value="Other" /> Other
</p>
<!-- 7 vopros -->
<b>7. Where do You chat with Your friends</b>
<select name="chatting">
<option value="Msn">Msn</option>
<option value="Skype">Skype</option>
<option value="Yahoo!">Yahoo!</option>
<option value="Other">Other</option>
</select>
<p> </p>
<!-- 8 vopros -->
<b>8. You use social media for</b>
<select name="using">
<option value="Personal reasons">Personal reasons</option>
<option value="Professional reasons">Professional reasons</option>
<option value="Don't use it">Don't use it</option>
</select>
<p> </p>
<p>
<!-- 9 vopros -->
<b>9. You prefer to obtain the information You need at</b>
<select name="information">
<option value="Yahoo!">Yahoo!</option>
<option value="Google">Google</option>
<option value="Wikipedia">Wikipedia</option>
<option value="Ask">Ask</option>
<option value="Other">Other</option>
</select>
</p>
<!-- 10 vopros -->
<b>10. What do You prefer to do being online</b>?
<select id="drop" name="online">
<option value="Read blogs">Read blogs</option>
<option value="Chat with friends">Chat with friends</option>
<option value="Watch videos">Watch videos</option>
<option value="Read news">Read news</option>
<option value="Other">Other</option>
</select>
<!-- konec voprosov -->
<!-- button-submit -->
<p align="center">
<input type="submit" value="Submit" onclick="return formvalid()" />
</p>
</form>
<!-- end #container -->
</p>
</div>
</body>
</html>
<html xmlns="....org/1999/xhtml">
<head>
<script type="text/javascript">
<!--
//-->
function checkform ( form )
{
if (form.occupation.value == "") {
alert( "Please enter your occupation." );
form.occupation.focus();
return false ;
}
return true ;
}
function checkform(f) {
for (var i=0; i<f.elements("gender").length;
i++) {
var radio = f.elements("gender")[i];
if (radio.checked) {
return true;
}
}
// no checked radio button found
window.alert("Choose your gender!");
f.elements("gender")[0].focus();
return false;
}
function checkform(f) {
for (var i=0; i<f.elements("job").length;
i++) {
var radio = f.elements("job")[i];
if (radio.checked) {
return true;
}
}
// no checked radio button found
window.alert("Choose if you have a job!");
f.elements("job")[0].focus();
return false;
}
function checkform(f) {
for (var i=0; i<f.elements("bla").length;
i++) {
var radio = f.elements("bla")[i];
if (radio.checked) {
return true;
}
}
// no checked radio button found
window.alert("Answer question number 1");
f.elements("bla")[0].focus();
return false;
}
function checkform(f) {
for (var i=0; i<f.elements("use").length;
i++) {
var radio = f.elements("use")[i];
if (radio.checked) {
return true;
}
}
// no checked radio button found
window.alert("Answer question number 3!");
f.elements("use")[0].focus();
return false;
}
function checkform(f) {
for (var i=0; i<f.elements("often").length;
i++) {
var radio = f.elements("often")[i];
if (radio.checked) {
return true;
}
}
// no checked radio button found
window.alert("Answer question number 5!");
f.elements("often")[0].focus();
return false;
}
function checkform(f) {
for (var i=0; i<f.elements("upload").length;
i++) {
var radio = f.elements("upload")[i];
if (radio.checked) {
return true;
}
}
// no checked radio button found
window.alert("Answer question number 6!");
f.elements("upload")[0].focus();
return false;
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Questionaire</title>
<link href="oneColLiqCtrHdr19.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
body {
background-color: #FFF;
background-image: url(images/aa.jpg);
}
-->
</style></head>
<body class="oneColLiqCtrHdr">
<div id="container">
<div id="header">
<h1> </h1></div>
<p>
<!-- forms -->
<form action="...../interaction/saveforminfo.aspx" method="post" onsubmit="return checkform(this);">
<input type="hidden" name="surveyid" value="knjuku2" />
<input type="hidden" name="usecookie" value="true" />
<input type="hidden" name="landingpage" value="http.../thanks.html" />
<!--.../interaction/viewdb.aspx?surveyid=knjuku2-->
<p align="center"><b>This survey was made for Business Academy Copenhagen North project not for FDIM.</b></p>
<p>
<fieldset>
<div align="center">
<b>Please enter your personal information</b>
</div>
<p align="center"><b>Your Occupation:</b>
<input type="text" name="occupation" /><br /></p>
<p align="center">
<b>Age Group:</b> <select name="age">
<option value="under 18">less then 18</option>
<option value="18-25">18-25</option>
<option value="26-35">26-35</option>
<option value="over 35">more then 35</option>
</select></p>
<p align="center">
<b>Status:</b> <select name="status">
<option value="single">Single</option>
<option value="single with children">Single with children</option>
<option value="in relationship">In relationship</option>
<option value="married">Married</option>
<option value="divorced">Divorced</option>
</select></p>
<p align="center"><b>Gender:</b>
<input type="radio" name="gender" value="male" /> Male
<input type="radio" name="gender" value="female" /> Female<br /></p>
<p align="center">
<b>Do you have a job?</b> <input type="radio" name="job" value="yes" />Yes
<input type="radio" name="job" value="no" />No </p>
</fieldset>
<!-- 1 vopros -->
<b>1. Why do You use online social media?</b>
</p>
<p>
<input type="radio" name="bla" value="To chat with friends" />
To chat with friends<br></br>
<input type="radio" name="bla" value="To read news" /> To read news<br></br>
<input type="radio" name="bla" value="To write blogs" /> To write blogs<br></br>
<input type="radio" name="bla" value="Other" /> Other<br></br>
</p>
<p>
<!-- 2 vopros -->
<b>2. What online social media do You use more often?</b>
</p>
<p> </p>
<p>
<select name="more">
<option value="MySpace">MySpace</option>
<option value="Twitter">Twitter</option>
<option value="Facebook">Facebook</option>
<option value="LinkedIn">LinkedIn</option>
</select>
</p>
<p> </p>
<!-- 3 vopros -->
<b>3. When do You use it?</b>
<p>
<input type="radio" name="use" value="1" /> At home<br></br>
<input type="radio" name="use" value="2" /> At work<br></br>
<input type="radio" name="use" value="3" /> At school<br></br>
<input type="radio" name="iuse" value="4" /> In the bus/train<br></br>
<input type="radio" name="use" value="5" /> Other<br></br>
</p>
<p><b>4. How much hours approximately do You spend on social media?</b>
</p>
<select name="hours">
<option value="less than 2 hours">less than 2 hours a day</option>
<option value="2-4 hours">2-4 hours a day</option>
<option value="4-8 hours">4-8 hours a day</option>
<option value="8-12 hours">8-12 hours a day</option>
<option value="more than 12 hours">more than 12 hours a day</option>
</select>
<p> </p>
<p>
<!-- 5 vopros -->
<b>5. Do You use social media often?</b></p>
<p>
<input type="radio" name="often" value="Yes" />
Yes
<input type="radio" name="often" value="No" /> No
<!-- 6 vopros -->
</p>
<p><b>6. Social Media website to which You usually upload</b></p>
<p>
<input type="radio" name="upload" value="Youtube" /> Youtube<br></br>
<input type="radio" name="upload" value="Flickr" /> Flickr<br></br>
<input type="radio" name="upload" value="Photobucket" /> Photobucket<br></br>
<input type="radio" name="upload" value="Slideshare" /> Slideshare<br></br>
<input type="radio" name="upload" value="Other" /> Other
</p>
<!-- 7 vopros -->
<b>7. Where do You chat with Your friends</b>
<select name="chatting">
<option value="Msn">Msn</option>
<option value="Skype">Skype</option>
<option value="Yahoo!">Yahoo!</option>
<option value="Other">Other</option>
</select>
<p> </p>
<!-- 8 vopros -->
<b>8. You use social media for</b>
<select name="using">
<option value="Personal reasons">Personal reasons</option>
<option value="Professional reasons">Professional reasons</option>
<option value="Don't use it">Don't use it</option>
</select>
<p> </p>
<p>
<!-- 9 vopros -->
<b>9. You prefer to obtain the information You need at</b>
<select name="information">
<option value="Yahoo!">Yahoo!</option>
<option value="Google">Google</option>
<option value="Wikipedia">Wikipedia</option>
<option value="Ask">Ask</option>
<option value="Other">Other</option>
</select>
</p>
<!-- 10 vopros -->
<b>10. What do You prefer to do being online</b>?
<select id="drop" name="online">
<option value="Read blogs">Read blogs</option>
<option value="Chat with friends">Chat with friends</option>
<option value="Watch videos">Watch videos</option>
<option value="Read news">Read news</option>
<option value="Other">Other</option>
</select>
<!-- konec voprosov -->
<!-- button-submit -->
<p align="center">
<input type="submit" value="Submit" onclick="return formvalid()" />
</p>
</form>
<!-- end #container -->
</p>
</div>
</body>
</html>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "---/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="....org/1999/xhtml">
- <head>
- <script type="text/javascript">
- <!--
- //-->
- function checkform ( form )
- {
- if (form.occupation.value == "") {
- alert( "Please enter your occupation." );
- form.occupation.focus();
- return false ;
- }
- return true ;
- }
- function checkform(f) {
- for (var i=0; i<f.elements("gender").length;
- i++) {
- var radio = f.elements("gender")[i];
- if (radio.checked) {
- return true;
- }
- }
- // no checked radio button found
- window.alert("Choose your gender!");
- f.elements("gender")[0].focus();
- return false;
- }
- function checkform(f) {
- for (var i=0; i<f.elements("job").length;
- i++) {
- var radio = f.elements("job")[i];
- if (radio.checked) {
- return true;
- }
- }
- // no checked radio button found
- window.alert("Choose if you have a job!");
- f.elements("job")[0].focus();
- return false;
- }
- function checkform(f) {
- for (var i=0; i<f.elements("bla").length;
- i++) {
- var radio = f.elements("bla")[i];
- if (radio.checked) {
- return true;
- }
- }
- // no checked radio button found
- window.alert("Answer question number 1");
- f.elements("bla")[0].focus();
- return false;
- }
- function checkform(f) {
- for (var i=0; i<f.elements("use").length;
- i++) {
- var radio = f.elements("use")[i];
- if (radio.checked) {
- return true;
- }
- }
- // no checked radio button found
- window.alert("Answer question number 3!");
- f.elements("use")[0].focus();
- return false;
- }
- function checkform(f) {
- for (var i=0; i<f.elements("often").length;
- i++) {
- var radio = f.elements("often")[i];
- if (radio.checked) {
- return true;
- }
- }
- // no checked radio button found
- window.alert("Answer question number 5!");
- f.elements("often")[0].focus();
- return false;
- }
- function checkform(f) {
- for (var i=0; i<f.elements("upload").length;
- i++) {
- var radio = f.elements("upload")[i];
- if (radio.checked) {
- return true;
- }
- }
- // no checked radio button found
- window.alert("Answer question number 6!");
- f.elements("upload")[0].focus();
- return false;
- }
- </script>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Questionaire</title>
- <link href="oneColLiqCtrHdr19.css" rel="stylesheet" type="text/css" />
- <style type="text/css">
- <!--
- body {
- background-color: #FFF;
- background-image: url(images/aa.jpg);
- }
- -->
- </style></head>
- <body class="oneColLiqCtrHdr">
- <div id="container">
- <div id="header">
- <h1> </h1></div>
- <p>
- <!-- forms -->
- <form action="...../interaction/saveforminfo.aspx" method="post" onsubmit="return checkform(this);">
- <input type="hidden" name="surveyid" value="knjuku2" />
- <input type="hidden" name="usecookie" value="true" />
- <input type="hidden" name="landingpage" value="http.../thanks.html" />
- <!--.../interaction/viewdb.aspx?surveyid=knjuku2-->
- <p align="center"><b>This survey was made for Business Academy Copenhagen North project not for FDIM.</b></p>
- <p>
- <fieldset>
- <div align="center">
- <b>Please enter your personal information</b>
- </div>
- <p align="center"><b>Your Occupation:</b>
- <input type="text" name="occupation" /><br /></p>
- <p align="center">
- <b>Age Group:</b> <select name="age">
- <option value="under 18">less then 18</option>
- <option value="18-25">18-25</option>
- <option value="26-35">26-35</option>
- <option value="over 35">more then 35</option>
- </select></p>
- <p align="center">
- <b>Status:</b> <select name="status">
- <option value="single">Single</option>
- <option value="single with children">Single with children</option>
- <option value="in relationship">In relationship</option>
- <option value="married">Married</option>
- <option value="divorced">Divorced</option>
- </select></p>
- <p align="center"><b>Gender:</b>
- <input type="radio" name="gender" value="male" /> Male
- <input type="radio" name="gender" value="female" /> Female<br /></p>
- <p align="center">
- <b>Do you have a job?</b> <input type="radio" name="job" value="yes" />Yes
- <input type="radio" name="job" value="no" />No </p>
- </fieldset>
- <!-- 1 vopros -->
- <b>1. Why do You use online social media?</b>
- </p>
- <p>
- <input type="radio" name="bla" value="To chat with friends" />
- To chat with friends<br></br>
- <input type="radio" name="bla" value="To read news" /> To read news<br></br>
- <input type="radio" name="bla" value="To write blogs" /> To write blogs<br></br>
- <input type="radio" name="bla" value="Other" /> Other<br></br>
- </p>
- <p>
- <!-- 2 vopros -->
- <b>2. What online social media do You use more often?</b>
- </p>
- <p> </p>
- <p>
- <select name="more">
- <option value="MySpace">MySpace</option>
- <option value="Twitter">Twitter</option>
- <option value="Facebook">Facebook</option>
- <option value="LinkedIn">LinkedIn</option>
- </select>
- </p>
- <p> </p>
- <!-- 3 vopros -->
- <b>3. When do You use it?</b>
- <p>
- <input type="radio" name="use" value="1" /> At home<br></br>
- <input type="radio" name="use" value="2" /> At work<br></br>
- <input type="radio" name="use" value="3" /> At school<br></br>
- <input type="radio" name="iuse" value="4" /> In the bus/train<br></br>
- <input type="radio" name="use" value="5" /> Other<br></br>
- </p>
- <p><b>4. How much hours approximately do You spend on social media?</b>
- </p>
- <select name="hours">
- <option value="less than 2 hours">less than 2 hours a day</option>
- <option value="2-4 hours">2-4 hours a day</option>
- <option value="4-8 hours">4-8 hours a day</option>
- <option value="8-12 hours">8-12 hours a day</option>
- <option value="more than 12 hours">more than 12 hours a day</option>
- </select>
- <p> </p>
- <p>
- <!-- 5 vopros -->
- <b>5. Do You use social media often?</b></p>
- <p>
- <input type="radio" name="often" value="Yes" />
- Yes
- <input type="radio" name="often" value="No" /> No
- <!-- 6 vopros -->
- </p>
- <p><b>6. Social Media website to which You usually upload</b></p>
- <p>
- <input type="radio" name="upload" value="Youtube" /> Youtube<br></br>
- <input type="radio" name="upload" value="Flickr" /> Flickr<br></br>
- <input type="radio" name="upload" value="Photobucket" /> Photobucket<br></br>
- <input type="radio" name="upload" value="Slideshare" /> Slideshare<br></br>
- <input type="radio" name="upload" value="Other" /> Other
- </p>
- <!-- 7 vopros -->
- <b>7. Where do You chat with Your friends</b>
- <select name="chatting">
- <option value="Msn">Msn</option>
- <option value="Skype">Skype</option>
- <option value="Yahoo!">Yahoo!</option>
- <option value="Other">Other</option>
- </select>
- <p> </p>
- <!-- 8 vopros -->
- <b>8. You use social media for</b>
- <select name="using">
- <option value="Personal reasons">Personal reasons</option>
- <option value="Professional reasons">Professional reasons</option>
- <option value="Don't use it">Don't use it</option>
- </select>
- <p> </p>
- <p>
- <!-- 9 vopros -->
- <b>9. You prefer to obtain the information You need at</b>
- <select name="information">
- <option value="Yahoo!">Yahoo!</option>
- <option value="Google">Google</option>
- <option value="Wikipedia">Wikipedia</option>
- <option value="Ask">Ask</option>
- <option value="Other">Other</option>
- </select>
- </p>
- <!-- 10 vopros -->
- <b>10. What do You prefer to do being online</b>?
- <select id="drop" name="online">
- <option value="Read blogs">Read blogs</option>
- <option value="Chat with friends">Chat with friends</option>
- <option value="Watch videos">Watch videos</option>
- <option value="Read news">Read news</option>
- <option value="Other">Other</option>
- </select>
- <!-- konec voprosov -->
- <!-- button-submit -->
- <p align="center">
- <input type="submit" value="Submit" onclick="return formvalid()" />
- </p>
- </form>
- <!-- end #container -->
- </p>
- </div>
- </body>
- </html>
- Anonymous
- Bot


- Joined: 25 Feb 2008
- Posts: ?
- Loc: Ozzuland
- Status: Online
May 14th, 2011, 4:29 am
- bido
- Newbie


- Joined: May 14, 2011
- Posts: 6
- Status: Offline
- Bogey
- Bogey


- Joined: Jul 14, 2005
- Posts: 8211
- Loc: USA
- Status: Offline
Most of those errors come from JavaScript. Instead of having javascript in one page, include the javascript into the page (<script type="text/javascript" src="path/to/javascript.js"></script>)
The last error is that you put a <div> inside of a <fieldset>
The last error is that you put a <div> inside of a <fieldset>
"Bring forth therefore fruits meet for repentance:" Matthew 3:8
- bido
- Newbie


- Joined: May 14, 2011
- Posts: 6
- Status: Offline
Bogey wrote:
Most of those errors come from JavaScript. Instead of having javascript in one page, include the javascript into the page (<script type="text/javascript" src="path/to/javascript.js"></script>)
The last error is that you put a <div> inside of a <fieldset>
The last error is that you put a <div> inside of a <fieldset>
Ok, thank you very much for the answer, you really helped me!
Page 1 of 1
To Reply to this topic you need to LOGIN or REGISTER. It is free.
Post Information
- Total Posts in this topic: 4 posts
- Users browsing this forum: No registered users and 88 guests
- You cannot post new topics in this forum
- You cannot reply to topics in this forum
- You cannot edit your posts in this forum
- You cannot delete your posts in this forum
- You cannot post attachments in this forum
